home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000038_news@columbia.edu _Wed Mar 21 09:51:41 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id JAA11913
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Wed, 21 Mar 2001 09:51:40 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id JAA05320
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 21 Mar 2001 09:44:59 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@columbia.edu (Frank da Cruz)
  10. Subject: Re: What could Kermit implement from FTP?
  11. Date: 21 Mar 2001 14:44:57 GMT
  12. Organization: Columbia University
  13. Message-ID: <99aep9$565$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <99ach7$3tq$1@newsmaster.cc.columbia.edu>,
  17. Jeffrey Altman <jaltman@watsun.cc.columbia.edu> wrote:
  18. : In article <3ab8aabf@news.iprimus.com.au>, DMC <devo_dave@hotmail.com> wrote:
  19. : ...
  20. : : ? Support for the 'page' file structure in addition to the file and record
  21. : : structures
  22. : Can you describe what you mean by the "Page" file structure?
  23. Page mode is a leftover from TOPS-20, allowing direct access to disk pages
  24. (blocks), the minimum addressable storage unit on the disk.  A TOPS-20
  25. file was defined by its page table, which could be sparse.  Transferring a
  26. file in page mode, as opposed to ascii or binary mode, would preserve its
  27. sparseness.
  28.  
  29. You don't see this sort of thing very much any more.  But TOPS-10 and
  30. TOPS-20 are quietly coming back to life after lying dormant the last
  31. fifteen years, with the recent appearance of PDP-10 emulation programs;
  32. see the links at the end of:
  33.  
  34.   http://www.columbia.edu/kermit/pdp10.html
  35.  
  36. The Kermit FTP client, although it does not support page mode, does
  37. include two special commands to be used with PDP-10 FTP servers:
  38. VDIRECTORY and TYPE TENEX.  (And as noted here recently, TOPS-20 Kermit
  39. recently had a facelift to allow faster file transfers for when the new
  40. emulators come online, but don't have TCP/IP).
  41.  
  42. : : As for circumstances where a user might choose between Kermit or FTP,
  43. : : i have only really mentioned the relative robustness of Kermit for use
  44. : : on unreliable lines and/or LAN, X.25 connections, etc that are
  45. : : unsupported by FTP. I have also mentioned possibly the overheads of
  46. : : having to learn the Kermit interface as opposed to FTP are higher.
  47. : In what way are Kermit's commands more difficult to learn than FTP commands?
  48. In fact, Kermit's commands are almost identical with FTP commands: GET,
  49. BINARY, BYE, etc.  Most FTP commands that are different from Kermit's are
  50. accepted as invisible synonyms to the regular Kermit programs; for example
  51. PUT for SEND.  Of course Kermit has more commands because it does more
  52. things.  If FTP did those things, it would have more commands too.
  53.  
  54. The main difference is that Kermit's file management commands (DIR,
  55. DELETE, MKDIR, etc) work locally rather than being sent to the server.  To
  56. send commands to the FTP server from Kermit, you must use FTP DIR, FTP
  57. DELETE, FTP MKDIR, etc (you can also use REMOTE DIR, REMOTE DELETE, etc,
  58. as you would with a Kermit server, and there are also "R-command"
  59. shortcuts for most of these: RCD, RDIR, RMKDIR, ....)  See the command
  60. comparison here:
  61.  
  62.   http://www.columbia.edu/kermit/ckermit3.html#x3.8
  63.  
  64. - Frank